home *** CD-ROM | disk | FTP | other *** search
/ Leonardo daVinci / LEODAVINCI.ISO / DATA / G2.Dxr / 00086_L0MouseUpMapCell7 sprite script.ls < prev    next >
Encoding:
Text File  |  1996-11-22  |  251 b   |  17 lines

  1. global vG2Wall7oObj, vCurRoom
  2.  
  3. on mouseDown
  4.   if objectp(vG2Wall7oObj) then
  5.     registerMouseDown()
  6.     clickSound()
  7.   end if
  8. end
  9.  
  10. on mouseUp
  11.   if not validateMouseDown() then
  12.     exit
  13.   end if
  14.   set vCurRoom to 7
  15.   L0MouseUpMapCell(vG2Wall7oObj)
  16. end
  17.